/* estilos.css - Estilos comunes y específicos por página */

/* ----- Estilos generales ----- */
body {
    background: linear-gradient(135deg, #b9bee7, #ACB6E5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Times New Roman', Times, serif;
    padding: 1rem;
}

.form-card {
    background: rgb(226, 225, 225);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6c63ff;
}

.btn-primary {
    background-color: #6c63ff;
    border: none;
}

.btn-primary:hover {
    background-color: #807afd;
}

.btn-outline-secondary:hover {
    color: black;
    background-color: #6c63ff;
}